Skip to main content

Javascript - Obfuscation 2

1

The page is empty. Let's inspect the source code of the page.

2

Looks like password has been encoded multiple times. We can use the decodeURI and function to decode it.

3

> decodeURI("unescape%28%22String.fromCharCode%2528104%252C68%252C117%252C102%252C106%252C100%252C107%252C105%252C49%252C53%252C54%2529%22%29")
<- 'unescape("String.fromCharCode%28104%2C68%2C117%2C102%2C106%2C100%2C107%2C105%2C49%2C53%2C54%29")'
> decodeURIComponent("String.fromCharCode%28104%2C68%2C117%2C102%2C106%2C100%2C107%2C105%2C49%2C53%2C54%29")
<- 'String.fromCharCode(104,68,117,102,106,100,107,105,49,53,54)'
> String.fromCharCode(104,68,117,102,106,100,107,105,49,53,54)
<- 'hDufjdki156'

Password

hDufjdki156